home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / doc / manual / volume2 / rchan.h < prev    next >
Encoding:
Text File  |  1991-11-19  |  481 b   |  14 lines

  1. typedef struct list_rchan {
  2.     char                    *li_mta; /* the MTA */
  3.     CHAN                    *li_chan; /* the channel its on */
  4.     union {
  5.         AUTH            *li_un_auth; /* auth stuff used in submit */
  6.         char        *li_un_dir; /* the directory associated */
  7.     } list_rchan_un;
  8.     struct list_rchan       *li_next; /* next in the chain */
  9. } LIST_RCHAN;
  10. #define li_auth list_rchan_un.li_un_auth
  11. #define li_dir list_rchan_un.li_un_dir
  12.  
  13. #define NULLIST_RCHAN           ((LIST_RCHAN *)0)
  14.